Rust: libraries
actix-web
Actix web is a small, pragmatic, and extremely fast rust web framework based on actix.
https://github.com/actix/actix-web
User Guide
Connection not closed correctly?
https://github.com/actix/actix-web/issues/439
https://x1.inkenkun.com/archives/5837 (Japanese)
Handler will be removed in next release
https://gitter.im/actix/actix-web?at=5c7c5c00d2d62067b73b7ead
Nikolay Kim @fafhrd91 Mar 04 07:58
Handler was one of the first subsystems, but extractors are much better
i'd use app state as state
there will be no Handler in next release
r2d2
A generic connection pool for Rust.
https://github.com/sfackler/r2d2
doc
https://github.com/sfackler/r2d2/blob/4b50b30b9dbd030f399e9f725dd1659e72e2f20f/src/lib.rs#L298
code: lib.rs
pub struct Pool<M: ManageConnection>(Arc<SharedPool<M>>);
diesel
A safe, extensible ORM and Query Builder for Rust
https://github.com/diesel-rs/diesel
guides
#Rust